type net/http.http2Frame

20 uses

	net/http (current package)
		h2_bundle.go#L1530: type http2frameParser func(fc *http2frameCache, fh http2FrameHeader, countError func(string), payload []byte) (http2Frame, error)
		h2_bundle.go#L1660: type http2Frame interface {
		h2_bundle.go#L1672: 	lastFrame http2Frame
		h2_bundle.go#L1904: func (fr *http2Framer) ReadFrame() (http2Frame, error) {
		h2_bundle.go#L1951: func (fr *http2Framer) checkFrameOrder(f http2Frame) error {
		h2_bundle.go#L2008: func http2parseDataFrame(fc *http2frameCache, fh http2FrameHeader, countError func(string), payload []byte) (http2Frame, error) {
		h2_bundle.go#L2127: func http2parseSettingsFrame(_ *http2frameCache, fh http2FrameHeader, countError func(string), p []byte) (http2Frame, error) {
		h2_bundle.go#L2268: func http2parsePingFrame(_ *http2frameCache, fh http2FrameHeader, countError func(string), payload []byte) (http2Frame, error) {
		h2_bundle.go#L2310: func http2parseGoAwayFrame(_ *http2frameCache, fh http2FrameHeader, countError func(string), p []byte) (http2Frame, error) {
		h2_bundle.go#L2352: func http2parseUnknownFrame(_ *http2frameCache, fh http2FrameHeader, countError func(string), p []byte) (http2Frame, error) {
		h2_bundle.go#L2363: func http2parseWindowUpdateFrame(_ *http2frameCache, fh http2FrameHeader, countError func(string), p []byte) (http2Frame, error) {
		h2_bundle.go#L2431: func http2parseHeadersFrame(_ *http2frameCache, fh http2FrameHeader, countError func(string), p []byte) (_ http2Frame, err error) {
		h2_bundle.go#L2573: func http2parsePriorityFrame(_ *http2frameCache, fh http2FrameHeader, countError func(string), payload []byte) (http2Frame, error) {
		h2_bundle.go#L2622: func http2parseRSTStreamFrame(_ *http2frameCache, fh http2FrameHeader, countError func(string), p []byte) (http2Frame, error) {
		h2_bundle.go#L2654: func http2parseContinuationFrame(_ *http2frameCache, fh http2FrameHeader, countError func(string), p []byte) (http2Frame, error) {
		h2_bundle.go#L2705: func http2parsePushPromise(_ *http2frameCache, fh http2FrameHeader, countError func(string), p []byte) (_ http2Frame, err error) {
		h2_bundle.go#L2935: func (fr *http2Framer) readMetaFrame(hf *http2HeadersFrame) (http2Frame, error) {
		h2_bundle.go#L3058: func http2summarizeFrame(f http2Frame) string {
		h2_bundle.go#L4673: 	f   http2Frame // valid until readMore is called
		h2_bundle.go#L5376: func (sc *http2serverConn) processFrame(f http2Frame) error {